home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 33
/
Amiga Format AFCD33 (Issue 117, Dec 1998).iso
/
-seriously_amiga-
/
graphics
/
splitmpegwos
/
src
/
smakefile
< prev
next >
Wrap
Makefile
|
1998-09-07
|
2KB
|
48 lines
#
# Copyright (c) 1994 Michael Simmons.
# All rights reserved.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose, without fee, and without written agreement is
# hereby granted, provided that the above copyright notice and the following
# two paragraphs appear in all copies of this software.
#
# IN NO EVENT SHALL MICHAEL SIMMONS BE LIABLE TO ANY PARTY FOR
# DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
# OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF MICHAEL SIMMONS
# HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# THE MICHAEL SIMMONS SPECIFICALLY DISCLAIMS ANY WARRANTIES,
# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
# AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
# ON AN "AS IS" BASIS, AND MICHAEL SIMMONS HAS NO OBLIGATION TO
# PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
# I can be contacted via
# Email: michael@ecel.uwa.edu.au
# Post: P.O. Box 506, NEDLANDS WA 6009, AUSTRALIA
# Linux
CC = SCPPC
OPTS = OPT OPTGO OPTPEEP OPTSCHED OPTINLOCAL OPTINL OPTTIME
CFLAGS=$(OPTS) $(DEBUG) ERRREXX NOSTKCHK PARMS=REG DATA=near IGNORE=104 MATH=STANDARD VERBOSE
OBJS = main.o global.o fileio.o util.o split.o parsers.o dialog.o errmsg.o
splitmpeg.elf: $(OBJS)
ppc-amigaos-ld -r LIB:c_ppc.o $(OBJS) LIB:scppc.a lib:end.o -o splitmpeg.elf
Protect splitmpeg.elf +e
Copy splitmpeg.elf /bin
dialog.o: dialog.c main.h errmsg.h stream.h proto.h util.h global.h
errmsg.o: errmsg.c main.h errmsg.h stream.h proto.h util.h global.h
fileio.o: fileio.c main.h errmsg.h stream.h proto.h util.h global.h
global.o: global.c main.h errmsg.h stream.h proto.h util.h global.h
main.o: main.c main.h errmsg.h stream.h proto.h util.h global.h
pasers.o: pasers.c main.h errmsg.h stream.h proto.h util.h global.h
split.o: split.c main.h errmsg.h stream.h proto.h util.h global.h
util.o: util.c main.h errmsg.h stream.h proto.h util.h global.h
# DO NOT DELETE THIS LINE -- make depend depends on it.